home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Auge 4000 / Auge 4000 #47 (1990-06-22)(Amiga User Gruppe Einzugsgebiet 4000).zip / Auge 4000 #47 (1990-06-22)(Amiga User Gruppe Einzugsgebiet 4000).adf / arp-pro1.3 / OLD_MANUAL / FPrintf < prev    next >
Text File  |  1990-06-22  |  1KB  |  67 lines

  1.  
  2.  
  3.  
  4.      FPrintf(31.0)      ARP Programmers Manual     FPrintf(31.0)
  5.  
  6.  
  7.  
  8.      NAME
  9.       FPrintf - print formatted data on file.
  10.  
  11.      SYNOPSIS
  12.       count    = FPrintf(File,    "String", *args)
  13.         d0           d0       A0        A1
  14.  
  15.      FUNCTION
  16.       This function    performs 'standard' C-style formatting of data
  17.       on the specified output file.    It uses    the exec function
  18.       RawDoFmt() to    do the actual formatting of the    data.  The %
  19.       types    supported by this function are quite standard, see any
  20.       C reference for details.
  21.  
  22.      INPUTS
  23.       File - A valid AmigaDOS output file handle, such as returned
  24.           by Open() or Output().
  25.  
  26.       "String" - pointer to    a C-style format string.
  27.  
  28.       *args    - Pointer to start of argument stream.
  29.  
  30.      RESULT
  31.       count    - if all goes well, the    total count of characters
  32.           actually written will    be returned.  If an error
  33.           occured, this    function will return -1.  If this
  34.           function is passed a NULL output filehandle, this
  35.           function will    return zero.
  36.  
  37.      ADDITIONAL    CONSIDERATIONS
  38.       You must be aware of the values actually passed to this
  39.       function by your compiler, especially    since some compilers
  40.       promote all values to    32 bit integers    in function calls.
  41.  
  42.      BUGS
  43.       None known.
  44.  
  45.      SEE ALSO
  46.       Printf, Puts,    exec.library/RawDoFmt, C language reference on
  47.       printf.
  48.  
  49.      AUTHOR
  50.       SDB
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.      Page 1                         (printed 2/22/88)
  64.  
  65.  
  66.  
  67.